home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET 2
/
BCI NET 2.iso
/
archives
/
programming
/
e
/
amigae30a_fr.lha
/
AmigaE30f
/
Sources
/
Lang
/
Yax
/
fac.yax
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1980-06-15
|
109 b
|
3 lines
(defun fac (n) (if (eq n 1) 1 (* (fac (sub n 1)) n)))
(write 'Calcule le factorielle de : ' (fac (readint)))